GET api/market/news?SecurityCodes[0]={SecurityCodes[0]}&SecurityCodes[1]={SecurityCodes[1]}&IndustryCode={IndustryCode}&StartDate={StartDate}&EndDate={EndDate}&Limit={Limit}

Search for news

Request Information

URI Parameters

NameDescriptionTypeAdditional information
SecurityCodes

Security codes related to the news

Collection of string

None.

IndustryCode

Code for industry type. Values can be retrieved from the industrytypes endpoint.

integer

None.

StartDate

Search start date for the news (dd-MM-yyyy).

string

None.

EndDate

Search end date for the news (dd-MM-yyyy).

string

None.

Limit

Maximum number of news items that will be retrieved

integer

Default value is 20

Body Parameters

None.

Response Information

Resource Description

List of NewsDetails objects

Collection of News
NameDescriptionTypeAdditional information
ID

News ID

integer

None.

PublishDateTime

News publish date and time

date

None.

Headline

News headline

string

None.

SecurityCode

Security code related to the news

string

None.

IndustryCode

Industry code related to the news

integer

None.

Contents

News contents. This will only be populated when calling the news contents endpoint

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "ID": 1,
    "PublishDateTime": "2024-09-29T10:00:00",
    "Headline": "Norton up to 90.9% in target Bullabulling",
    "SecurityCode": "NGF",
    "IndustryCode": 15104000,
    "Contents": "News contents. Only populated when calling the news contents endpoint and not the news search endpoint."
  },
  {
    "ID": 2,
    "PublishDateTime": "2024-09-29T14:00:00",
    "Headline": "Credit Suisse buys 4.3m Papillon shares",
    "SecurityCode": "PIR",
    "IndustryCode": 15104000,
    "Contents": "News contents. Only populated when calling the news contents endpoint and not the news search endpoint."
  }
]

application/xml, text/xml

Sample:
<ArrayOfNews xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TPP.B2B.Webservices2.Contract.Market">
  <News>
    <Contents>News contents. Only populated when calling the news contents endpoint and not the news search endpoint.</Contents>
    <Headline>Norton up to 90.9% in target Bullabulling</Headline>
    <ID>1</ID>
    <IndustryCode>15104000</IndustryCode>
    <PublishDateTime>2024-09-29T10:00:00</PublishDateTime>
    <SecurityCode>NGF</SecurityCode>
  </News>
  <News>
    <Contents>News contents. Only populated when calling the news contents endpoint and not the news search endpoint.</Contents>
    <Headline>Credit Suisse buys 4.3m Papillon shares</Headline>
    <ID>2</ID>
    <IndustryCode>15104000</IndustryCode>
    <PublishDateTime>2024-09-29T14:00:00</PublishDateTime>
    <SecurityCode>PIR</SecurityCode>
  </News>
</ArrayOfNews>